This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Exporting to MS Access ~Chloe Dwogerokonyoden 28.Jan.04 09:21 AM a Web browser Applications Development All ReleasesAll Platforms
Have you put the use?
UseLSX "*LSXODBC"
In the help of Lotus there is this example:
his agent declares a new ODBCConnection object and connects to a user-specified data source.
Uselsx "*LSXODBC"
Sub Initialize
Dim con As New ODBCConnection
con.ConnectTo(Inputbox("ODBC data source name", "DSN"))
While Not con.IsConnected
dsn = Inputbox("ODBC data source name", _
"Connection not made ...")
If dsn = "" Then Exit Sub
con.ConnectTo(dsn)
Wend
Messagebox "Connected to " & con.DataSourceName,, _
"Connection made ..."
con.Disconnect
End Sub